home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MATHS / PLPLOT / PLPLOT.ZIP / sys / dos / djgpp / cf / plconfig.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-10  |  2.1 KB  |  74 lines

  1. /* -*-C-*-
  2. /* $Id: plconfig.h,v 1.1 1994/08/10 01:08:24 mjl Exp $
  3.  * $Log: plconfig.h,v $
  4.  * Revision 1.1  1994/08/10  01:08:24  mjl
  5.  * New directory structure, config files, and other modifications for PLplot
  6.  * 4.99h/djgpp DOS port, submitted by Paul Kirschner.  New driver supports
  7.  * color fill.
  8.  *
  9.  * Revision 1.4  1994/07/28  07:40:47  mjl
  10.  * Added define for caddr_t to prevent future problems with broken X11R4
  11.  * headers and _POSIX_SOURCE.  Not defined if sys/types.h goes ahead
  12.  * and typedef's it anyway, when it's not supposed to.
  13.  *
  14.  * Revision 1.3  1994/07/25  05:56:30  mjl
  15.  * Added check for unistd.h.
  16.  *
  17.  * Revision 1.2  1994/07/23  04:41:08  mjl
  18.  * I'm going to try defining _POSIX_SOURCE here now.
  19.  *
  20.  * Revision 1.1  1994/07/19  22:26:57  mjl
  21.  * Header file for holding miscellaneous config info, including install
  22.  * directories, system dependencies, etc.  Included by plplotP.h.
  23. */
  24.  
  25. /*
  26.     plConfig.h.in
  27.  
  28.     Maurice LeBrun
  29.     IFS, University of Texas at Austin
  30.     18-Jul-1994
  31.  
  32.     Contains macro definitions that determine miscellaneous PLplot library
  33.     configuration defaults, such as macros for bin, font, lib, and tcl
  34.     install directories, and various system dependencies.  On a Unix
  35.     system, typically the configure script builds plConfig.h from
  36.     plConfig.h.in.  Elsewhere, it's best to hand-configure a plConfig.h
  37.     file and keep it with the system-specific files.
  38. */
  39.  
  40. #ifndef __PLCONFIG_H__
  41. #define __PLCONFIG_H__
  42.  
  43. /* Define if on a POSIX.1 compliant system.  */
  44. #undef _POSIX_SOURCE
  45.  
  46. /* Define HAVE_UNISTD_H if unistd.h is available. */
  47. #undef HAVE_UNISTD_H
  48.  
  49. /* Define if you have vfork.h.  */
  50. #undef HAVE_VFORK_H
  51.  
  52. /* Define to `int' if <sys/types.h> doesn't define.  */
  53. #undef pid_t
  54.  
  55. /* Define to `char *' if <sys/types.h> doesn't define.  */
  56. #undef caddr_t
  57.  
  58. /* Define as the return type of signal handlers (int or void).  */
  59. #undef RETSIGTYPE
  60.  
  61. /* Define if you have the ANSI C header files.  */
  62. #undef STDC_HEADERS
  63.  
  64. /* Define vfork as fork if vfork does not work.  */
  65. #undef vfork
  66.  
  67. /* Install directories. */
  68.  
  69. #undef LIB_DIR
  70. #undef BIN_DIR
  71. #undef TCL_DIR
  72.  
  73. #endif    /* __PLCONFIG_H__ */
  74.